This repository was archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (41 loc) · 1.36 KB
/
setup.py
File metadata and controls
48 lines (41 loc) · 1.36 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
45
46
47
48
#!/usr/bin/env python3
import sys
from setuptools import find_packages, setup
CURRENT_PYTHON = sys.version_info[:2]
REQUIRED_PYTHON = (3, 6)
def read(f):
return open(f, 'r', encoding='utf-8').read()
setup(
name='notecloud',
version=0.1,
url='https://github.com/neverworkalone/notecloud',
license='MIT',
description='notecloud',
long_description=read('README.md'),
long_description_content_type='text/markdown',
author='KJ Kim',
author_email='gencode.me@gmail.com',
packages=find_packages(exclude=['tests*', 'frontend', 'locale']),
include_package_data=True,
install_requires=[],
python_requires=">=3.6",
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP',
],
project_urls={
'Source': 'https://github.com/neverworkalone/notecloud',
},
)