-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (24 loc) · 770 Bytes
/
setup.py
File metadata and controls
29 lines (24 loc) · 770 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
from distutils.core import setup
from setuptools import find_packages
with open('experimentor/__init__.py', 'r') as f:
version_line = f.readline()
version = version_line.split('=')[1].strip().replace("'", "")
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='experimentor',
version=version,
packages=find_packages(),
url='https://github.com/aquilesC/experimentor',
license='MIT',
author='Aquiles',
author_email='aquiles@pythonforthelab.com',
description='Basic building blocks for controlling complex setups',
install_requires=[
'pint==0.18',
'numpy',
],
python_requires='>=3.8',
long_description=long_description,
long_description_content_type="text/markdown",
)