forked from ALBA-Synchrotron/sardana-adlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (30 loc) · 923 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
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
from setuptools import setup, find_packages
# The version is updated automatically with bumpversion
# Do not update manually
__version = '2.0.0'
def main():
"""Main method collecting all the parameters to setup."""
name = "sardana-adlink"
version = __version
description = "AdlinkAICoTi Sardana Controller"
author = "ALBA"
author_email = "[email protected]"
license = "GPLv3"
url = "https://github.com/ALBA-Synchrotron/sardana-adlink"
packages = find_packages()
# Add your dependencies in the following line.
install_requires = ['sardana']
setup(
name=name,
version=version,
description=description,
author=author,
author_email=author_email,
license=license,
url=url,
packages=packages,
install_requires=install_requires
)
if __name__ == "__main__":
main()