-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
38 lines (36 loc) · 1.53 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
""" setup configuration file """
import os.path
from setuptools import setup, find_packages
CURRDIR = os.path.dirname(os.path.abspath(__file__))
setup(
name='place',
version='0.8.0',
author='Jami L. Johnson, Henrik tom Worden, Kasper van Wijk, Paul Freeman',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
scripts=[],
license='GNU General Public License, Version 3 (LGPLv3)',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Console',
'Environment :: Web Environment',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: JavaScript',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Physics'],
url='https://github.com/PALab/place',
description=('An open-source Python package for laboratory automation, ' +
'control, and experimentation.'),
long_description=open('{}/README.md'.format(CURRDIR)).read(),
entry_points={'console_scripts': [
'place_server = placeweb.server:start',
'place_renamer = place.utilities:column_renamer',
'place_unpack = place.utilities:multiple_files',
'place_pack = place.utilities:single_file'], },
)