-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·54 lines (43 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
50
51
52
53
from setuptools import setup, find_packages # Always prefer setuptools over distutils
from codecs import open # To use a consistent encoding
from os import path
setup(
name='cryptolens',
version='0.1.12',
description = 'Command line tool to monitor the prices of cryptocurrencies',
url='https://github.com/hkilian/cryptolens',
author = 'Harry Kilian',
license='MIT',
python_requires='>=3',
include_package_data=True,
install_requires=[
'urwid',
'sortedcontainers',
'fuzzywuzzy',
'websockets',
'requests',
'peewee',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
# What does your project relate to?
keywords='sample setuptools development',
entry_points={
'console_scripts': [
'cryptolens = cryptolens.main:main',
'crypto = cryptolens.main:main',
],
},
packages=['cryptolens', 'cryptolens.mvc', 'cryptolens.core', 'cryptolens.daemon', 'cryptolens.exchanges'],
)