-
Notifications
You must be signed in to change notification settings - Fork 138
/
setup.py
31 lines (28 loc) · 916 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
29
30
31
import multiprocessing # noqa
from setuptools import find_packages, setup
requirements = []
with open("requirements.txt", "r") as in_:
requirements = in_.readlines()
setup(
name="myfitnesspal",
version="2.1.0",
url="http://github.com/coddingtonbear/python-myfitnesspal/",
description="Access health and fitness data stored in Myfitnesspal",
author="Adam Coddington",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Utilities",
],
packages=find_packages(),
install_requires=requirements,
test_suite="nose.collector",
tests_require=[
"nose",
"mock",
],
entry_points={"console_scripts": ["myfitnesspal = myfitnesspal.cmdline:main"]},
)