-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.25 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
from setuptools import setup, find_packages
setup(name='pysparc',
version='0.2',
packages=find_packages(),
url='http://github.com/hisparc/pysparc/',
bugtrack_url='http://github.com/HiSPARC/pysparc/issues',
license='GPLv3',
author='David Fokkema, et al.',
author_email='[email protected]',
maintainer='HiSPARC',
maintainer_email='[email protected]',
description='Controlling HiSPARC hardware from python',
long_description=open('README.rst').read(),
keywords=['HiSPARC', 'Nikhef', 'cosmic rays'],
classifiers=['Intended Audience :: Science/Research',
'Intended Audience :: Education',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Education',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
scripts=['bin/muonlab_with_http_api'],
package_data={'pysparc': ['firmware.rbf', 'config.ini']},
install_requires=['tables', 'flask', 'redis', 'mock', 'pylibftdi',
'atom', 'lazy', 'requests'])