-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·39 lines (36 loc) · 1.19 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import os
import mattersend
from setuptools import setup
README = os.path.realpath(os.path.sep.join([__file__, os.path.pardir, 'README.rst']))
setup(
name=mattersend.name,
py_modules=['mattersend'],
entry_points={
'console_scripts': [
'mattersend=mattersend:main',
],
},
install_requires=["setproctitle", "requests"],
tests_require=["nose", "coverage", "pyfakefs"],
test_suite="nose.collector",
version=mattersend.version,
description=mattersend.description,
long_description=open(README, 'r').read(),
author="Massimiliano Torromeo",
author_email="[email protected]",
url=mattersend.url,
download_url="{}/tarball/v{}".format(mattersend.url, mattersend.version),
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"License :: OSI Approved :: MIT License",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Natural Language :: English",
"Topic :: Utilities"
],
license="MIT License"
)