pylcg

- Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.acid.vegas/-c.git
Log | Files | Refs | Archive | README | LICENSE

setup.py (1520B)

      1 #!/usr/bin/env python
      2 # PyLCG - Linear Congruential Generator for IP Sharding - Developed by acidvegas ib Python (https://github.com/acidvegas/pylcg)
      3 # setup.py
      4 
      5 from setuptools import setup, find_packages
      6 
      7 with open('README.md', 'r', encoding='utf-8') as fh:
      8 	long_description = fh.read()
      9 
     10 setup(
     11 	name='pylcg',
     12 	version='1.0.3',
     13 	author='acidvegas',
     14 	author_email='acid.vegas@acid.vegas',
     15 	description='Linear Congruential Generator for IP Sharding',
     16 	long_description=long_description,
     17 	long_description_content_type='text/markdown',
     18 	url='https://github.com/acidvegas/pylcg',
     19 	project_urls={
     20 		'Bug Tracker': 'https://github.com/acidvegas/pylcg/issues',
     21 		'Documentation': 'https://github.com/acidvegas/pylcg#readme',
     22 		'Source Code': 'https://github.com/acidvegas/pylcg',
     23 	},
     24 	classifiers=[
     25 		'Development Status :: 5 - Production/Stable',
     26 		'Intended Audience :: Developers',
     27 		'License :: OSI Approved :: ISC License (ISCL)',
     28 		'Operating System :: OS Independent',
     29 		'Programming Language :: Python :: 3',
     30 		'Programming Language :: Python :: 3.6',
     31 		'Programming Language :: Python :: 3.7',
     32 		'Programming Language :: Python :: 3.8',
     33 		'Programming Language :: Python :: 3.9',
     34 		'Programming Language :: Python :: 3.10',
     35 		'Programming Language :: Python :: 3.11',
     36 		'Topic :: Internet',
     37 		'Topic :: Security',
     38 		'Topic :: Software Development :: Libraries :: Python Modules',
     39 	],
     40 	packages=find_packages(),
     41 	python_requires='>=3.6',
     42 	entry_points={
     43 		'console_scripts': [
     44 			'pylcg=pylcg.cli:main',
     45 		],
     46 	},
     47 )