-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 758 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""
Setup script for pangalactic.vger, the Virtual Galactic Engineering Repository.
"""
import os, sys
from setuptools import setup, find_packages
VERSION = open('VERSION').read()[:-1]
long_description = (
"pangalactic.vger implements the Virtual Galactic Engineering Repository, "
"the repository service for the Pan Galactic Engineering Framework.")
setup(
name='pangalactic.vger',
version=VERSION,
description="The Virtual Galactic Engineering Repository",
long_description=long_description,
author='Stephen Waterbury',
author_email='stephen.c.waterbury@nasa.gov',
maintainer="Stephen Waterbury",
maintainer_email='waterbug@pangalactic.us',
license='TBD',
packages=find_packages(),
zip_safe=False
)