-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·28 lines (25 loc) · 932 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
28
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup, find_packages
from pip.req import parse_requirements
install_reqs = parse_requirements("requirements.txt")
reqs = [str(each.req) for each in install_reqs if each.req]
setup(
name = 'django-object-hooks',
version = '1.2.0',
author = "Diogo Laginha",
author_email = "[email protected]",
url = 'https://github.com/laginha/django-object-hooks',
description = "Object-level Web Hook application",
packages = find_packages(where='src'),
package_dir = {'': 'src'},
install_requires = reqs,
extras_require = {},
zip_safe = False,
license = 'MIT',
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Intended Audience :: Developers',
]
)