1
|
|
|
|
2
|
|
|
from codecs import open |
3
|
|
|
from os import path |
4
|
|
|
|
5
|
|
|
from setuptools import find_packages, setup |
6
|
|
|
|
7
|
|
|
here = path.abspath(path.dirname(__file__)) |
8
|
|
|
|
9
|
|
|
with open(path.join(here, 'README.md'), encoding='utf-8') as f: |
10
|
|
|
long_description = f.read() |
11
|
|
|
|
12
|
|
|
with open(path.join(here, 'VERSION'), encoding='utf-8') as f: |
13
|
|
|
version = f.read() |
14
|
|
|
|
15
|
|
|
|
16
|
|
|
setup( |
17
|
|
|
name='econopy', version=version, |
18
|
|
|
description='Simple economic utilities', |
19
|
|
|
long_description=long_description, |
20
|
|
|
long_description_content_type='text/markdown', |
21
|
|
|
url='https://github.com/KeoH/econoPy', |
22
|
|
|
author='Francisco Manzano Magaña', |
23
|
|
|
author_email='[email protected]', |
24
|
|
|
classifiers=[ |
25
|
|
|
'Development Status :: 1 - Planning', |
26
|
|
|
'Intended Audience :: Developers', |
27
|
|
|
'Topic :: Office/Business :: Financial :: Accounting', |
28
|
|
|
'License :: OSI Approved :: MIT License', |
29
|
|
|
'Programming Language :: Python :: 3', |
30
|
|
|
'Programming Language :: Python :: 3.4', |
31
|
|
|
'Programming Language :: Python :: 3.5', |
32
|
|
|
'Programming Language :: Python :: 3.6', |
33
|
|
|
'Programming Language :: Python :: 3.7' |
34
|
|
|
], |
35
|
|
|
keywords='economic,financial,business,accounting', |
36
|
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']), |
37
|
|
|
install_requires=[], |
38
|
|
|
extras_require={ |
39
|
|
|
'dev': ['check-manifest'], |
40
|
|
|
'test': ['coverage'], |
41
|
|
|
}, |
42
|
|
|
project_urls={ |
43
|
|
|
'Bug Reports': 'https://github.com/KeoH/econoPy/issues', |
44
|
|
|
'Source': 'https://github.com/KeoH/econoPy/', |
45
|
|
|
}, |
46
|
|
|
) |
47
|
|
|
|