forked from campagnola/pytic
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (31 loc) · 1.02 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
__author__ = "Daniel Castelli"
from setuptools import setup
from setuptools.command.install import install as _install
import subprocess
class install(_install):
def pre_install_script(self):
pass
def post_install_script(self):
pass
def run(self):
self.pre_install_script()
_install.run(self)
self.post_install_script()
with open('README.md') as f:
long_description = f.read()
setup(
name = "PyTic",
version = "0.0.4",
author = "Daniel Castelli",
author_email = "[email protected]",
description = "An object-oriented Python wrapper for Pololu Tic Stepper Controllers.",
long_description=long_description,
long_description_content_type='text/markdown',
license = "Allen Institute Software License",
keywords = "PyTic Pololu Tic Stepper Controller Wrapper",
url = "https://github.com/AllenInstitute/pytic",
packages = ['pytic'],
install_requires = ['PyYAML'],
include_package_data=True,
cmdclass = {'install': install},
)