-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.05 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
import os, sys
try:
from setuptools import setup, find_packages
use_setuptools = True
except ImportError:
from distutils.core import setup
use_setuptools = False
try:
with open('README.md', 'rt') as readme:
description = '\n' + readme.read()
except IOError:
# maybe running setup.py from some other dir
description = ''
install_requires = [
'rxtender>=0.4.0'
]
setup(
name="rxt-backend-base",
version='0.4.0',
url='https://github.com/rxtender/rxt-backend-base',
license='MIT',
description="Base backend for RxTender",
long_description=description,
author='Romain Picard',
author_email='romain.picard@oakbits.com',
packages=find_packages(),
install_requires=install_requires,
include_package_data=True,
platforms='any',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Debuggers'
]
)