-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='venvui',
version='0.1a10',
description='An user interface to manage Python projects and virtual '
'environments.',
url='https://github.com/hjalves/venvui',
author='Humberto Alves',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
],
keywords='venvui',
packages=find_packages(),
install_requires=[
'aiohttp',
'aiohttp-cors',
'colorlog',
'toml',
'pkginfo',
'jinja2'
],
package_data={'venvui': ['templates/*.j2',
'frontend/*',
'frontend/static/css/*',
'frontend/static/js/*']},
entry_points={
'console_scripts': [
'venvui = venvui.app:main',
]
},
#include_package_data=True,
zip_safe=False,
)