This repository was archived by the owner on Nov 12, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (49 loc) · 1.69 KB
/
setup.py
File metadata and controls
57 lines (49 loc) · 1.69 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
readme = open("README.rst").read()
# doclink = """
# Documentation
# -------------
# The full documentation is at http://inforcehub.rtfd.org."""
githublink = """
Github repository
-----------------
The code can be found on GitHub at https://github.com/Inforcehub/inforcehub."""
history = open("HISTORY.rst").read().replace(".. :changelog:", "")
setup(
name="inforcehub",
version="0.2.2",
description="Utilities for data science and customer management",
long_description=readme + "\n\n" + githublink + "\n\n" + history,
author="inforcehub",
author_email="matt.gosden@inforcehub.com",
url="https://github.com/inforcehub/inforcehub",
packages=["inforcehub"],
package_dir={"inforcehub": "inforcehub"},
include_package_data=True,
install_requires=["pandas", "bcrypt"],
license="GNU",
zip_safe=False,
keywords="inforcehub",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)