forked from mikec964/chelmbigstock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (20 loc) · 752 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
from distutils.core import setup
setup(
name = 'chelmbigstock',
packages = ['chelmbigstock'],
version = '0.1',
description = 'Stock analyzer',
author = 'Chelmsford Big Data Study Group',
author_email = 'mike@75design.com',
url = 'https://github.com/mikec964/chelmbigstock',
classifiers = [
'Programming Language :: Python',
'Operating System :: OS Independent',
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: System :: Distributed Computing',
'Topic :: Scientific/Engineering :: Information Analysis',
],
long_description = open('README.rst').read(),
)