-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (48 loc) · 1.54 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
45
46
47
48
49
50
51
#! /usr/bin/env python
from setuptools import setup, find_packages
from glob import glob
NAME = 'django-myfeeds'
DESCRIPTION = 'RSS Feed Management'
URL = 'https://github.com/hdknr/' + NAME
SCRIPTS = glob('scripts/*.py')
PACKAGES = [
i for i in find_packages(exclude=['tests', 'sample'])
if '.' not in i]
VERSION = getattr(__import__(PACKAGES[0]), '__version__')
REQUIRES = [
i.strip() for i in
open('requirements/pypi.txt').readlines() if i[0] != '#']
README = open('README.md').read()
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Simplifed BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
setup(
license='Simplfied BSD License',
author='Hideki Nara of LaFoaglia,Inc.',
author_email='gmail [at] hdknr.com',
maintainer='LaFoglia,Inc.',
maintainer_email='gmail [at] hdknr.com',
classifiers=CLASSIFIERS,
name=NAME,
version=VERSION,
url=URL,
description=DESCRIPTION,
download_url=URL,
packages=PACKAGES,
include_package_data=True,
zip_safe=False,
long_description=README,
scripts=SCRIPTS,
install_requires=REQUIRES,
)