-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 811 Bytes
/
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
from setuptools import setup, find_packages
import os
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
with open(os.path.realpath('./VERSION')) as f:
version = f.readline()
setup(
name = 'easydi',
packages = ['easydi'],
version = version,
license='gpl-2.0',
description = 'Lazy dependency injection',
author = 'Wiryono Lauw',
author_email = '[email protected]',
url = 'https://github.com/wiryonolau/python-easydi',
install_requires=install_requires,
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)