-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (29 loc) · 880 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
29
30
31
32
33
34
35
import sys
from setuptools import setup, find_packages
def main():
"""Main method collecting all the parameters to setup."""
name = "sardana-ni660x"
_version = "1.0.1"
description = "NI660X Sardana Controller"
author = "ALBA controls team"
author_email = "[email protected]"
license = "GPLv3"
url = "http://github.com/ALBA-Synchrotron/sardana-ni660x"
packages = find_packages()
# Add your dependencies in the following line.
install_requires = ['sardana']
python_requires = '>=3.5'
setup(
name=name,
version=_version,
description=description,
author=author,
author_email=author_email,
license=license,
url=url,
packages=packages,
install_requires=install_requires,
python_requires=python_requires,
)
if __name__ == "__main__":
main()