forked from bobbyjsmith11/pll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 786 Bytes
/
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
from setuptools import find_packages, setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='pll',
version="0.1",
description="Design and simulation of RF phase-locked loops",
long_desription=readme(),
classifiers=[
'Development Status :: Alpha ::',
'License :: OSI Approved :: MIT',
'Programming Language :: Python 3.5',
],
keywords='phase locked loop RF simulation',
url="http://github.com/bobbyjsmith11/pll",
author="Bobby Smith",
author_email="bobbyjsmith11@gmail.com",
license="MIT",
packages=["pll"],
install_requires=[
'numpy',
],
test_suit='nose.collector',
test_requires=['nose'],
zip_safe=False
)