-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.4 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.4 KB
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
from setuptools import setup, find_packages
with open('financejson/__about__.py') as file:
about = {}
exec(file.read(), about)
with open('README.md') as file:
readme = file.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
long_description=readme,
long_description_content_type='text/markdown',
url=about['__url__'],
author=about['__author__'],
license=about['__license__'],
packages=find_packages(),
install_requires=requirements,
test_requires=['pytest'],
python_requires='>=3.6',
include_package_data=True,
package_data={'financejson': ['schema.json'], },
entry_points={'console_scripts': ["financejson = financejson.cli:main"]},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Office/Business :: Financial',
'Intended Audience :: Financial and Insurance Industry'
],
)