-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Remove unused and outdated setup.py"
This reverts commit ab0d130.
- Loading branch information
1 parent
a2df935
commit ceab275
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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']) |