forked from flatangle/flatlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (40 loc) · 1.22 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
49
"""
This file is part of flatlib - (C) FlatAngle
Author: João Ventura ([email protected])
"""
from setuptools import setup
from setuptools import find_packages
setup(
# Project
name = 'flatlib',
version = '0.2.2-dev',
# Sources
packages = find_packages(),
package_data = {
'flatlib': [
'resources/README.md',
'resources/swefiles/*'
],
},
# Dependencies
install_requires = ['pyswisseph>=2.00.00-2'],
# 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 = '[email protected]',
# 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',
],
)