-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (33 loc) · 898 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
31
32
33
34
35
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='xalc',
description='Hexadecimal calculator',
long_description=readme(),
license='MIT',
url='https://github.com/rabinv/xalc',
author='Vincent Whitchurch',
author_email='[email protected]',
version='0.6.0',
install_requires=[
'ipython>=5.0.0',
'bitstring>=3.1.4',
'blessed>=1.14.1',
],
tests_require=['nose'],
test_suite='nose.collector',
entry_points={
'console_scripts': 'xalc = xalc.xalc:main'
},
packages=['xalc'],
classifiers=[
'Environment :: Console',
'Framework :: IPython',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Software Development',
],
)