-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 809 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 809 Bytes
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
#!/usr/bin/python
from setuptools import setup, find_packages
setup(
name="fasttrack",
license='Apache License 2.0',
version="0.1.0",
description="Library for efficiently adding analytics to your project.",
long_description=open('README.rst', 'r').read(),
author="Nathan Pinger",
author_email="npinger@ycharts.com",
url="",
packages=find_packages(exclude=['tests']),
test_suite='nose.collector',
install_requires=[
'redis>=2.6.0',
'python-dateutil>=1.5',
],
tests_require=[
'nose>=1.0',
],
classifiers=[
"Intended Audience :: Developers",
'Intended Audience :: System Administrators',
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Utilities",
],
)