-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
23 lines (22 loc) · 903 Bytes
/
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
from setuptools import setup
setup(
name='fchart',
version='0.3',
description='Collection of Python scripts to make beautiful deepsky finder charts in various formats',
keywords='fchart starchart star charts finder chart astronomy map',
url='https://github.com/Fingel/fchart',
author='Michiel Brentjens <[email protected]>, Austin Riba <[email protected]>',
author_email='[email protected]',
license='GPLv2',
packages=['fchart'],
include_package_data=True,
install_requires=['numpy'],
scripts=['bin/fchart', 'bin/tyc2_to_binary'],
package_data={'fchart': ['data/catalogs/index.dat',
'data/catalogs/revngc.txt',
'data/catalogs/revic.txt',
'data/catalogs/sac.txt',
'data/catalogs/tyc2.bin',
'data/font-metrics/*.afm',
'data/label_positions.txt']},
)