-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (36 loc) · 1.14 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
__version__ = '0.1.devSNAPSHOT'
import os
from setuptools import setup, find_packages
def read(file_name):
return open(os.path.join(os.path.dirname(__file__), file_name)).read()
setup(
name='pycdi',
version=__version__,
description='Python Code Dependency Injection',
long_description=read('README.rst'),
url='https://github.com/ettoreleandrotognoli/python-cdi',
download_url='https://github.com/ettoreleandrotognoli/python-cdi/tree/%s/' % __version__,
license='BSD',
author='Éttore Leandro Tognoli',
author_email='[email protected]',
packages=find_packages(exclude=['tests', 'examples']),
include_package_data=True,
keywords=[
'cdi',
'di',
'code dependency injection',
'dependency injection'
],
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: BSD License',
],
install_requires=[
],
tests_require=[
],
)