-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 1.05 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()
required = []
setup(name='mock_decorators',
version=read('VERSION'),
author="Francisco Huertas",
author_email="pacohuertas@gmail.com",
license="Apache2",
packages=["mock_decorators"],
description="Mock library using python decorators",
long_description=read('README.md'),
url='https://github.com/fhuertas/mock_decorators',
download_url="https://github.com/fhuertas/mock_decorators/tarball/{}".format(read('VERSION')),
install_requires=required,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
])