-
Notifications
You must be signed in to change notification settings - Fork 105
/
setup.py
48 lines (40 loc) · 1.17 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
This file is part of flatlib - (C) FlatAngle
Author: João Ventura (flatangleweb@gmail.com)
"""
from setuptools import setup
from setuptools import find_packages
setup(
# Project
name='flatlib',
version='0.2.3',
# Sources
packages=find_packages(),
package_data={
'flatlib': [
'resources/README.md',
'resources/swefiles/*'
],
},
# Dependencies
install_requires=['pyswisseph==2.08.00-1'],
# Metadata
description='Python library for Traditional Astrology',
url='https://github.com/flatangle/flatlib',
keywords=['Astrology', 'Traditional Astrology'],
license='MIT',
# Authoring
author='João Ventura',
author_email='flatangleweb@gmail.com',
# Classifiers
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)