-
Notifications
You must be signed in to change notification settings - Fork 30
/
setup.py
41 lines (36 loc) · 1.19 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
import os
from setuptools import setup, find_packages
current_dir = os.path.dirname(os.path.abspath(__file__))
def read(filename):
fullpath = os.path.join(current_dir, filename)
try:
with open(fullpath) as f:
return f.read()
except Exception:
return ""
setup(
name='django-ftpserver',
version='0.8.0',
description="FTP server application for Django.",
long_description=read('README.rst'),
packages=find_packages(),
author='Shinya Okano',
author_email='[email protected]',
url='https://github.com/tokibito/django-ftpserver',
install_requires=['Django>=2.2', 'pyftpdlib'],
extras_require={
'develop': [
'pytest', 'flake8', 'pytest-django',
'pytest-pythonpath', 'tox', 'wheel',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
])