-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (29 loc) · 969 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
from setuptools import find_packages, setup
setup(
name='pegasus',
description='Coin data analysis and Correlation models.',
author='Alex Manelis',
version='1.0.1',
platforms=['any'],
url='https://github.com/amanelis/pegasus',
license='proprietary',
data_files = [('', ['LICENSE'])],
classifiers=[
'Topic :: Software Development :: Internal Tools',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=find_packages(exclude=['tests']),
install_requires=[
],
tests_require=[
],
test_suite='tests',
)