-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.33 KB
/
setup.py
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
26
27
28
29
30
31
32
33
34
import os
from setuptools import setup
from asterisms import __version__
def read(*filenames):
return open(os.path.join(os.path.dirname(__file__),*filenames)).read()
setup(
name = 'asterisms',
version = __version__,
description = 'Asterism and celestial cartography helper functions',
long_description = read('readme.rst'),
download_url = 'https://github.com/digitalvapor/asterisms/tarball/{0}'.format(__version__),
url = 'https://github.com/digitalvapor/asterisms',
author = 'Tom Spalding',
author_email = '[email protected]',
license = 'Creative Commons Attribution-ShareAlike 4.0 International License',
keywords = ['astronomy', 'asterisms', 'constellations', 'cartography', 'history'],
packages = ['asterisms'],
package_data = {
'vondrak': ['docs/*.rst'],
},
install_requires = ['numpy', 'skyfield', 'vondrak', 'matplotlib'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Astronomy',
])