/ setup.py
setup.py
1 #!/usr/bin/env python3 2 # -*- coding: utf-8 -*- 3 4 ''' 5 https://github.com/cirosantilli/china-dictatorship#mirrors 6 ''' 7 8 import json 9 10 from setuptools import setup, find_packages 11 12 from os import path 13 this_directory = path.abspath(path.dirname(__file__)) 14 with open(path.join(this_directory, 'README.adoc')) as f: 15 long_description = f.read() 16 17 setup( 18 name='china-dictatorship', 19 version='0.0.74', 20 description='2018新疆改造中心,1989六四事件,1999法轮功 ,2019 996.ICU, 2018包子露宪,2015 710律师劫,2015巴拿马文件 邓家贵,2017低端人口,2008西藏骚乱', 21 long_description=long_description, 22 # Otherwise upload fails with: "The description failed to render in the default format of reStructuredText." 23 long_description_content_type='text/plain', 24 url='https://github.com/cirosantilli/china-dictatorship', 25 author='Ciro Santilli', 26 author_email='ciro.santilli.contact@gmail.com', 27 packages=find_packages(), 28 include_package_data=True, 29 scripts=['china-dictatorship.py'], 30 )