-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 793 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
#!/usr/bin/env python
PROJECT = 'virtualenvwrapper_ctf'
VERSION = '0.0.3'
# Bootstrap installation of Distribute
from setuptools import setup, find_packages
setup(
name=PROJECT,
version=VERSION,
platforms=['Any'],
provides=['virtualenvwrapper_ctf'],
install_requires=[
'virtualenv',
'virtualenvwrapper',
'requests>=2.25.1',
'pandas>=1.2.4',
],
namespace_packages=['vctf'],
packages=find_packages(),
include_package_data=True,
entry_points={
'virtualenvwrapper.project.template': [
'ctf = vctf.__init__:template',
],
'console_scripts': [
'vctf=vctf.__main__:main',
'ctf=vctf.__main__:main',
],
},
scripts=[
'scripts/startctf',
]
)