-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
35 lines (33 loc) · 1.17 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
import pychattr
setup(name="pychattr",
version=pychattr.__version__,
description="Python Channel Attribution",
author="Jason Wolosonovich",
author_email="[email protected]",
url="https://github.com/jmwoloso/pychattr",
packages=find_packages(include=["pychattr", "pychattr.*"]),
license="BSD 3-clause",
long_description="Marketing Attribution for Python",
install_requires=[
"numpy",
"pandas"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python "
"Modules",
"Topic :: Scientific/Engineering",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"Intended Audience :: Information Technology"
])