-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 921 Bytes
/
Copy pathsetup.py
File metadata and controls
37 lines (35 loc) · 921 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
from setuptools import setup, find_packages
setup(
name='pcdl',
url='https://github.com/bwhmather/pcdl',
version='0.0.1',
author='Ben Mather',
author_email='bwhmather@bwhmather.com',
maintainer='',
license='GPLv3',
description=(
"Tools for designing pneumatic integrated circuits"
),
long_description=__doc__,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GPLv3 License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
],
install_requires=[
'Pillow',
'toml',
],
packages=find_packages(),
package_data={
'': ['*.*'],
},
entry_points={
'console_scripts': [
],
},
test_suite='pcdl.tests.suite',
)