-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.23 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
description = "Manage and load Budget Data Packages"
with open('README.rst') as readme:
long_description = readme.read()
setup(
name = 'budgetdatapackage',
version = '0.0.4',
url = 'https://github.com/tryggvib/budgetdatapackage',
license = 'GPLv3',
description = description,
long_description = long_description,
maintainer = 'Tryggvi Björgvinsson',
maintainer_email = '[email protected]',
install_requires = ['datapackage>=0.5.2'],
packages = ['budgetdatapackage'],
package_dir={'budgetdatapackage': 'budgetdatapackage'},
package_data={'budgetdatapackage': ['data/*.json']},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)