-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (40 loc) · 1.27 KB
/
setup.py
File metadata and controls
45 lines (40 loc) · 1.27 KB
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
from pathlib import Path
from setuptools import setup
here = Path(__file__).parent
# Get the long description from the README file
with open(here / 'README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name='pythonanywhere',
version='0.0.11',
description='PythonAnywhere helper tools for users',
long_description=long_description,
url='https://github.com/pythonanywhere/helper_scripts/',
author='PythonAnywhere LLP',
author_email='developers@pythonanywhere.com',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='pythonanywhere api cloud web hosting',
# packages=find_packages(exclude=['contrib', 'docs', 'tests']),
packages=['pythonanywhere'],
install_requires=[
'docopt',
'requests',
],
extras_require={},
python_requires='>=3.6',
package_data={},
data_files=[],
entry_points={},
scripts=[
'scripts/pa_start_django_webapp_with_virtualenv.py',
'scripts/pa_autoconfigure_django.py',
'pythonanywhere/snakesay.py',
]
)