-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
49 lines (40 loc) · 1.48 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import os
from setuptools import setup, find_packages
excluded_packages = ["tests",
"tests.*",
"examples",
"examples.*"
]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def parse_requirements(filename):
with open(filename) as f:
required = f.read().splitlines()
return required
setup(name = 'alchemist_lib',
version = '1.0',
description = 'Automatic trading library for cryptocurrencies.',
long_description = read("README.rst"),
url = 'https://github.com/Dodo33/alchemist-lib',
author = 'Carniel Giorgio',
author_email = '[email protected]',
python_requires = '>=3',
license = "MIT",
classifiers = [
#https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Information Analysis"
],
entry_points = {
'console_scripts': [
'alchemist = alchemist_lib.__main__:main',
],
},
packages = find_packages(exclude = excluded_packages),
install_requires = parse_requirements("requirements.txt")
)