|
9 | 9 | from distutils.version import LooseVersion |
10 | 10 |
|
11 | 11 |
|
12 | | -# Automatic name branching |
13 | | -def format_branch_name(name): |
14 | | - if name == "master": |
15 | | - # The master branch is considered an Alpha release |
16 | | - return "a" |
17 | | - elif name == "release": |
18 | | - return "" |
19 | | - else: |
20 | | - return name |
21 | | - |
22 | | - |
23 | 12 | # read the contents of your README file |
24 | 13 | with open("README.md", "r") as fh: |
25 | 14 | long_description = fh.read() |
@@ -81,25 +70,10 @@ def build_extension(self, ext): |
81 | 70 |
|
82 | 71 |
|
83 | 72 | setup( |
84 | | - name='dqrobotics', |
85 | | - version_config={ |
86 | | - "template": "{tag}.{branch}{ccount}", |
87 | | - "dev_template": "{tag}.{branch}{ccount}", |
88 | | - "dirty_template": "{tag}.{branch}{ccount}", |
89 | | - "branch_formatter": format_branch_name, |
90 | | - }, |
91 | | - setup_requires=['setuptools-git-versioning==1.7.3'], |
92 | | - author='Murilo Marques Marinho', |
93 | 73 | author_email='murilomarinho@ieee.org', |
94 | | - description='DQRobotics Python', |
95 | | - long_description=long_description, |
96 | | - long_description_content_type='text/markdown', |
97 | 74 | url="https://github.com/dqrobotics/python", |
98 | 75 | ext_modules=[CMakeExtension('dqrobotics._dqrobotics')], |
99 | 76 | cmdclass=dict(build_ext=CMakeBuild), |
100 | | - install_requires=[ |
101 | | - 'numpy', |
102 | | - ], |
103 | 77 | zip_safe=False, |
104 | 78 | packages=['dqrobotics', |
105 | 79 | 'dqrobotics.robots', |
|
0 commit comments