forked from orcasgit/django-fitbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 823 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
from setuptools import setup, find_packages
required = [line for line in open('requirements.txt').read().split("\n")]
setup(
name="django-fitbit",
version=__import__("fitapp").__version__,
author="orcas",
author_email="",
packages=find_packages(),
install_requires=["distribute"] + required,
include_package_data=True,
url="https://github.com/orcasgit/django-fitbit/",
license="",
description="Django integration for python-fitbit",
long_description=open("README.md").read(),
classifiers=[
"Development Status :: 3 - Alpha",
'License :: OSI Approved :: Apache Software License',
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2 :: Only"
]
)