-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (30 loc) · 849 Bytes
/
setup.py
File metadata and controls
38 lines (30 loc) · 849 Bytes
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
from setuptools import setup
import proclib
setup(
name='proclib',
version=proclib.__version__,
description='pythonic processes',
long_description=open('README.rst').read(),
license='MIT',
author='Eeo Jun',
author_email='packwolf58@gmail.com',
url='https://github.com/datalib/proclib',
packages=['proclib'],
install_requires=[
'signalsdb==0.1.2',
],
extras_require={
'test': ['pytest'],
},
include_package_data=True,
zip_safe=False,
platforms='any',
keywords='processes unix process datalib',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)