-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
56 lines (50 loc) · 1.7 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
50
51
52
53
54
55
56
import codecs
import os
from setuptools import find_packages, setup
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
LONG_DESCRIPTION = "\n" + fh.read()
with open("requirements.txt") as f:
required = f.read().splitlines()
VERSION = "0.3.7"
DESCRIPTION = "Classes for technical analysis of stocks."
# Setting up
setup(
name="stock-analyser",
version=VERSION,
author="Stefanie Molin",
author_email="[email protected]",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
url="https://github.com/themagicalmammal/stock-analyser",
packages=find_packages(),
include_package_data=True,
license="MIT",
install_requires=required,
project_urls={
# "Website": "https://github.com/themagicalmammal/stock-analyser",
# "Source code": "https://github.com/themagicalmammal/stock-analyser",
"Documentation":
"https://github.com/themagicalmammal/stock-analyser/blob/main/README.md",
"Bug tracker":
"https://github.com/themagicalmammal/stock-analyser/issues",
},
keywords=[
"python",
"stock",
"analysis",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Utilities",
],
)