-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (28 loc) · 894 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
32
33
#!/usr/bin/env python
import os
import sys
from setuptools import setup, find_packages
if sys.argv[-1] == "publish":
os.system("python setup.py register sdist bdist_wheel upload")
sys.exit()
setup(
name="activity-tracker",
version="0.0.5",
description="DAU/MAU tracker",
long_description="A library to perform daily-active-user (and similar) tracking",
packages=find_packages(exclude=["tests"]),
install_requires=[
# redis backend requires 'redis'
"six",
],
tests_require=["activity-tracker[test]"],
author="Matthew Eastman",
author_email="[email protected]",
url="https://github.com/educreations/activity-tracker",
license="MIT",
test_suite="tests",
extras_require={"test": ["pytest", "pytest-django", "fakeredis", "flake8"]},
classifiers=[
"License :: OSI Approved :: MIT License",
],
)