-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (24 loc) · 1.3 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
from setuptools import setup, find_packages
package_name = 'serafin'
with open('README.md', 'r') as fh:
long_description = fh.read()
with open('requirements.txt', 'r') as req:
requirements = req.read().splitlines()
setup( name = package_name
, version = '0.0.1'
, author = 'Yannick Uhlmann'
, author_email = '[email protected]'
, description = 'Single-Ended Operational Amplifier Characterization'
, long_description = long_description
, long_description_content_type = 'text/markdown'
, url = 'https://github.com/augustunderground/serafin'
, packages = find_packages()
, classifiers = [ 'Development Status :: 2 :: Pre-Alpha'
, 'Programming Language :: Python :: 3'
, 'Operating System :: POSIX :: Linux' ]
, python_requires = '>=3.9'
, install_requires = requirements
#, entry_points = { 'console_scripts': [ 'FIXME' ]}
, package_data = { '': ['resource/testbench.scs']}
, include_package_data = True
, )