This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
60 lines (49 loc) · 1.53 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
# Provides __version__
exec(open('version.py').read())
from setuptools import setup, find_packages, Command
class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
os.system('rm -vrf combtest/version.py')
requirements = ['rpyc~=4.0',
'six~=1.12',
'sphinx~=1.4']
os.system('cp -f version.py combtest/')
# Holding place for later, if needed.
test_requirements = [
]
setup(
name='py-combtest',
version=__version__,
description="Combinatorial test case generation and running",
author="Dell/EMC",
include_package_data=True,
author_email='[email protected]',
url='https://github.com/Isilon/py-combtest',
package_dir={'': 'src'},
packages=find_packages('src'),
python_requires='>=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4,<4',
install_requires=requirements,
keywords='combtest',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
cmdclass={
'clean': CleanCommand,
},
)